home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 July / 07_02.iso / software / xq-xsetup / files / setup.exe / {app} / plugins / XQ Windows Key 1.xpl < prev    next >
Text File  |  2001-11-27  |  1KB  |  48 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH 1"="Hardware\Keyboard"
  5. "NAME"="Enable Windows Keys"
  6. "LANGUAGE"="VBScript"
  7. "TEXT 1"="Enable Windows Keys"
  8. "DESCRIPTION 1"="If you have a keyboard with the two Windows keys, you can use these to access common Windows functions more quickly."
  9. "DESCRIPTION 2"="If you want, you can disable these keys, by clearing the box above."
  10. "COMMENT 1"="Thanks to CptSiskoX for the plug-in suggestion."
  11. "VERSION"="1.13"
  12. "AUTHOR"="Xteq Systems (Neil R. Turner and CptSiskoX)"
  13. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved."
  14. "CONTACTURL"="http://www.xteq.com/"
  15.  
  16. sP="HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoWinKeys"
  17.  
  18. SUB Plugin_Initialize
  19.  s=RegValueExists(sP)
  20.  if s=true then
  21.   f=RegReadValue(sP)
  22.   if f=0 then
  23.    Call SetUIElement(1,true)
  24.   else
  25.    Call SetUIElement(1,false)
  26.   end if
  27.  else
  28.   Call SetUIElement(1,true)
  29.  end if
  30. END SUB
  31.  
  32. SUB Plugin_Apply(ElementIndex,ElementSubIndex)
  33.  h=GetUIElement(1)
  34.  if h=true then
  35.   g=RegValueExists(sP)
  36.   if g=true then
  37.    Call RegWriteValue(sP,0,2)
  38.   end if
  39.  else
  40.   Call RegWriteValue(sP,1,2)
  41.  end if
  42.  
  43.  Call Restart()
  44. END SUB
  45.  
  46. SUB Plugin_Terminate
  47. END SUB
  48.